gl: Improve glyph cache logging
authorMatthias Clasen <mclasen@redhat.com>
Sun, 2 Jun 2019 20:53:07 +0000 (20:53 +0000)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 3 Jun 2019 02:09:04 +0000 (02:09 +0000)
Use g_message to be consistent, and make the
message fit a line.

gsk/gl/gskglglyphcache.c

index 37e468eb0e410d098f61ceaf2133ac8471ba4502..ed0aeb479cefecbc981150b0abc7a435f76e13a2 100644 (file)
@@ -190,11 +190,10 @@ add_to_cache (GskGLGlyphCache  *cache,
 #ifdef G_ENABLE_DEBUG
   if (GSK_RENDERER_DEBUG_CHECK (cache->renderer, GLYPH_CACHE))
     {
-      g_print ("Glyph cache:\n");
       for (i = 0; i < cache->atlases->len; i++)
         {
           atlas = g_ptr_array_index (cache->atlases, i);
-          g_print ("\tGskGLGlyphAtlas %d (%dx%d): %.2g%% old pixels, filled to %d, %d / %d\n",
+          g_message ("atlas %d (%dx%d): %.2g%% old pixels, filled to %d, %d / %d",
                    i, atlas->width, atlas->height,
                    100.0 * (double)atlas->old_pixels / (double)(atlas->width * atlas->height),
                    atlas->x, atlas->y0, atlas->y);